home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 05 / 1 / DISK0510.ZIP / COLOR < prev    next >
Text File  |  1985-08-08  |  512b  |  18 lines

  1. PROGRAM COLOR; {a short demo to show how to set colors and modes}
  2. VAR
  3.   MODE:INTEGER;
  4.   LETTERCOLOR:INTEGER;
  5.  
  6.  
  7. BEGIN
  8.   WRITE('enter a mode(0..6 for graphics board, 7 for mono): ');
  9.   READLN(MODE);
  10.   SETMODE(MODE);
  11.   REPEAT
  12.     WRITE('enter a color: ');
  13.     READLN(LETTERCOLOR);
  14.     TEXTCOLOR(LETTERCOLOR);
  15.     WRITELN('this is color ',LETTERCOLOR);
  16.   UNTIL LETTERCOLOR = 7;
  17. END.
  18.